home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cocktail / reuse.lha / reuse / c / Time.h < prev   
C/C++ Source or Header  |  1992-08-18  |  490b  |  21 lines

  1. # ifndef yyTime
  2. # define yyTime
  3.  
  4. # ifdef __STDC__
  5. # define ARGS(parameters)    parameters
  6. # else
  7. # define ARGS(parameters)    ()
  8. # endif
  9.  
  10. extern int    StepTime    ();
  11.             /* Returns the sum of user time and system time */
  12.             /* since the last call to 'StepTime' in milli-    */
  13.             /* seconds.                    */
  14.  
  15. extern void    WriteStepTime    ARGS((char * string));
  16.             /* Writes a line consisting of the string    */
  17.             /* 'string' and the value obtained from a call    */
  18.             /* to 'StepTime' on standard output.        */
  19.  
  20. # endif
  21.